home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / AMIGA / AMICUS / AMICUS20.ADF / BobEd / cc < prev    next >
Text File  |  1989-01-27  |  406b  |  20 lines

  1. .Key file
  2. if not exists SOURCE:<file>.c
  3.    echo "File SOURCE:<file>.c does not exist.  Try again."
  4.    skip END
  5.    endif
  6.  
  7. echo " ** Compiling...SOURCE:<file>.c"
  8. copy SOURCE:<file>.c to ram:
  9. LC:lc1 -iINCLUDE: -iINCLUDE:lattice/ ram:<file>
  10. if not exists ram:<file>.q
  11.    echo " ** Compile failed."
  12.    quit 20
  13.    endif
  14. LC:lc2 ram:<file>
  15.  
  16. copy ram:<file>.o to OBJECT:<file>.o
  17. delete ram:<file>.#? QUIET
  18. LAB END
  19.  
  20.